/* Chimney EXP - Main Styles */
/* Namespaced with 'pnt112_cexp_' prefix for complete isolation */

:root {
    --pnt112-cexp-primary: #d65e10;
    --pnt112-cexp-primary-dark: #b84d0d;
    --pnt112-cexp-secondary: #2c3e50;
    --pnt112-cexp-accent: #e74c3c;
    --pnt112-cexp-text: #333333;
    --pnt112-cexp-text-light: #666666;
    --pnt112-cexp-bg-light: #f8f9fa;
    --pnt112-cexp-bg-white: #ffffff;
    --pnt112-cexp-border: #e0e0e0;
    --pnt112-cexp-shadow: 0 2px 10px rgba(0,0,0,0.1);
    --pnt112-cexp-shadow-hover: 0 5px 20px rgba(0,0,0,0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
    color: var(--pnt112-cexp-text);
    background: var(--pnt112-cexp-bg-white);
}

.pnt112_cexp_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.pnt112_cexp_hero {
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    background: #1a1a1a; /* Dark gray for letterbox areas */
}

/* Video Background */
.pnt112_cexp_hero_video {
    position: absolute;
    top: 0;
    left: 50%;
    width: auto;
    height: 100%;
    transform: translateX(-50%) scaleX(-1); /* Flip horizontally */
    z-index: 0;
    object-fit: contain; /* Show entire video, maintain aspect ratio */
}

/* Video Overlay for text readability */
.pnt112_cexp_hero_overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(26, 26, 26, 0.75) 0%, 
        rgba(44, 62, 80, 0.75) 100%);
    z-index: 1;
}

.pnt112_cexp_hero_content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2; /* Above video and overlay */
}

.pnt112_cexp_hero_title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.pnt112_cexp_accent {
    color: var(--pnt112-cexp-primary);
}

.pnt112_cexp_hero_subtitle {
    font-size: 22px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.pnt112_cexp_hero_features {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.pnt112_cexp_feature_badge {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.pnt112_cexp_hero_cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.pnt112_cexp_btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.pnt112_cexp_btn_primary {
    background: var(--pnt112-cexp-primary);
    color: white;
}

.pnt112_cexp_btn_primary:hover {
    background: var(--pnt112-cexp-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--pnt112-cexp-shadow-hover);
}

.pnt112_cexp_btn_secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.pnt112_cexp_btn_secondary:hover {
    background: white;
    color: var(--pnt112-cexp-secondary);
}

.pnt112_cexp_btn_white {
    background: white;
    color: var(--pnt112-cexp-primary);
}

.pnt112_cexp_btn_white:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

.pnt112_cexp_btn_block {
    width: 100%;
    justify-content: center;
}

.pnt112_cexp_hero_image {
    position: relative;
}

.pnt112_cexp_image_placeholder {
    background: linear-gradient(135deg, var(--pnt112-cexp-primary) 0%, var(--pnt112-cexp-accent) 100%);
    height: 400px;
    border-radius: 20px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.pnt112_cexp_trust_badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: white;
    color: var(--pnt112-cexp-text);
    padding: 20px;
    border-radius: 12px;
    box-shadow: var(--pnt112-cexp-shadow-hover);
}

.pnt112_cexp_badge_content strong {
    display: block;
    font-size: 24px;
    color: var(--pnt112-cexp-primary);
    margin-bottom: 5px;
}

/* Article Section */
.pnt112_cexp_article {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.pnt112_cexp_article::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,133.3C672,139,768,181,864,197.3C960,213,1056,203,1152,176C1248,149,1344,107,1392,85.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
}

.pnt112_cexp_article_content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.pnt112_cexp_article_title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
    color: white;
}

.pnt112_cexp_article_text {
    font-size: 18px;
    line-height: 1.8;
    opacity: 0.95;
}

.pnt112_cexp_article_text p {
    margin-bottom: 20px;
}

.pnt112_cexp_article_text p:last-child {
    margin-bottom: 0;
}

/* Services Section */
.pnt112_cexp_services {
    padding: 80px 0;
    background: var(--pnt112-cexp-bg-light);
}

.pnt112_cexp_section_header {
    text-align: center;
    margin-bottom: 60px;
}

.pnt112_cexp_section_title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--pnt112-cexp-secondary);
}

.pnt112_cexp_section_subtitle {
    font-size: 18px;
    color: var(--pnt112-cexp-text-light);
}

.pnt112_cexp_services_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.pnt112_cexp_service_card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: var(--pnt112-cexp-shadow);
    transition: all 0.3s ease;
}

.pnt112_cexp_service_card:hover {
    transform: translateY(-5px);
    box-shadow: var(--pnt112-cexp-shadow-hover);
}

.pnt112_cexp_service_icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.pnt112_cexp_service_card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--pnt112-cexp-secondary);
}

.pnt112_cexp_service_card p {
    color: var(--pnt112-cexp-text-light);
    margin-bottom: 20px;
}

.pnt112_cexp_service_list {
    list-style: none;
}

.pnt112_cexp_service_list li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--pnt112-cexp-text-light);
}

.pnt112_cexp_service_list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--pnt112-cexp-primary);
    font-weight: bold;
}

/* Why Choose Section */
.pnt112_cexp_why_choose {
    padding: 80px 0;
    background: white;
}

.pnt112_cexp_why_content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
}

.pnt112_cexp_benefits_list {
    margin-top: 40px;
}

.pnt112_cexp_benefit {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.pnt112_cexp_benefit_icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--pnt112-cexp-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
}

.pnt112_cexp_benefit_content h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--pnt112-cexp-secondary);
}

.pnt112_cexp_benefit_content p {
    color: var(--pnt112-cexp-text-light);
}

.pnt112_cexp_stats_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.pnt112_cexp_stat {
    text-align: center;
    padding: 30px;
    background: var(--pnt112-cexp-bg-light);
    border-radius: 12px;
}

.pnt112_cexp_stat_number {
    font-size: 36px;
    font-weight: 700;
    color: var(--pnt112-cexp-primary);
    margin-bottom: 10px;
}

.pnt112_cexp_stat_label {
    font-size: 14px;
    color: var(--pnt112-cexp-text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Service Areas */
.pnt112_cexp_service_areas {
    padding: 60px 0;
    background: var(--pnt112-cexp-bg-light);
}

.pnt112_cexp_areas_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.pnt112_cexp_area_column h4 {
    color: var(--pnt112-cexp-secondary);
    margin-bottom: 15px;
    font-size: 18px;
}

.pnt112_cexp_area_column ul {
    list-style: none;
}

.pnt112_cexp_area_column li {
    padding: 8px 0;
    color: var(--pnt112-cexp-text-light);
    border-bottom: 1px solid var(--pnt112-cexp-border);
}

/* Testimonials */
.pnt112_cexp_testimonials {
    padding: 80px 0;
    background: white;
}

.pnt112_cexp_testimonials_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.pnt112_cexp_testimonial {
    background: var(--pnt112-cexp-bg-light);
    padding: 30px;
    border-radius: 12px;
    position: relative;
}

.pnt112_cexp_testimonial::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 80px;
    color: var(--pnt112-cexp-primary);
    opacity: 0.2;
    font-family: serif;
}

.pnt112_cexp_stars {
    color: #ffc107;
    font-size: 20px;
    margin-bottom: 15px;
}

.pnt112_cexp_testimonial p {
    margin-bottom: 20px;
    font-style: italic;
    color: var(--pnt112-cexp-text);
}

.pnt112_cexp_testimonial_author strong {
    display: block;
    color: var(--pnt112-cexp-secondary);
    margin-bottom: 5px;
}

.pnt112_cexp_testimonial_author span {
    color: var(--pnt112-cexp-text-light);
    font-size: 14px;
}

/* CTA Section */
.pnt112_cexp_cta_section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--pnt112-cexp-primary) 0%, var(--pnt112-cexp-accent) 100%);
    color: white;
    text-align: center;
}

.pnt112_cexp_cta_box h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.pnt112_cexp_cta_box p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.pnt112_cexp_cta_buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.pnt112_cexp_cta_note {
    margin-top: 20px;
    font-size: 14px;
    opacity: 0.9;
}

/* Contact Section */
.pnt112_cexp_contact {
    padding: 80px 0;
    background: var(--pnt112-cexp-bg-light);
}

.pnt112_cexp_contact_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.pnt112_cexp_contact_info h2 {
    font-size: 36px;
    color: var(--pnt112-cexp-secondary);
    margin-bottom: 15px;
}

.pnt112_cexp_contact_info p {
    color: var(--pnt112-cexp-text-light);
    margin-bottom: 30px;
}

.pnt112_cexp_contact_details {
    background: white;
    padding: 30px;
    border-radius: 12px;
}

.pnt112_cexp_contact_item {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.pnt112_cexp_contact_item strong {
    color: var(--pnt112-cexp-secondary);
}

.pnt112_cexp_contact_item a {
    color: var(--pnt112-cexp-primary);
    text-decoration: none;
}

.pnt112_cexp_contact_item a:hover {
    text-decoration: underline;
}

.pnt112_cexp_contact_form {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--pnt112-cexp-shadow);
}

.pnt112_cexp_form_row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.pnt112_cexp_form_row:last-of-type {
    grid-template-columns: 1fr;
}

.pnt112_cexp_contact_form input,
.pnt112_cexp_contact_form select,
.pnt112_cexp_contact_form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--pnt112-cexp-border);
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
}

.pnt112_cexp_contact_form input:focus,
.pnt112_cexp_contact_form select:focus,
.pnt112_cexp_contact_form textarea:focus {
    outline: none;
    border-color: var(--pnt112-cexp-primary);
}

/* Trust Section */
.pnt112_cexp_trust {
    padding: 40px 0;
    background: white;
    border-top: 1px solid var(--pnt112-cexp-border);
}

.pnt112_cexp_trust_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.pnt112_cexp_trust_item strong {
    display: block;
    color: var(--pnt112-cexp-secondary);
    font-size: 18px;
    margin-bottom: 5px;
}

.pnt112_cexp_trust_item span {
    color: var(--pnt112-cexp-text-light);
    font-size: 14px;
}